home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / C / Applications / Painted Black 0.91 / src / HDSAEstuff.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-12-27  |  748 b   |  36 lines  |  [TEXT/CWIE]

  1. /*****************************************************************************
  2.  
  3. Hub's Drop Shell 1.0
  4. ©Copyright 1995, Hubert Figuière, All right reserved.
  5.  
  6. HDSAEstuff.h
  7.  
  8. January 29th 1995
  9.  
  10. Author :
  11.     Hubert Figuière                HF
  12.  
  13. Purpose : this a shell used for creating simple Drag'n Drop application
  14.  
  15. 01/29/95
  16.     -First implementation (HF)
  17.     
  18. *****************************************************************************/
  19.  
  20.  
  21. #ifndef __HDSAESTUFF__
  22. #define __HDSAESTUFF__
  23.  
  24. #include <AppleEvents.h>
  25.  
  26.  
  27. OSErr    init_AE();
  28.  
  29.  
  30. pascal OSErr HandleOAPP(AppleEvent*,AppleEvent*,LongInt);
  31. pascal OSErr HandleODOC(AppleEvent*,AppleEvent*,LongInt);
  32. pascal OSErr HandlePDOC(AppleEvent*,AppleEvent*,LongInt);
  33. pascal OSErr HandleQUIT(AppleEvent*,AppleEvent*,LongInt);
  34.  
  35. #endif
  36.